home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen… 1994 February Supplement / ARPL-Feb-94-Supplement-PowerPC.iso / 3rd Party PowerPC Demo Apps / Diehl Graphsoft MiniCad-G / German MiniCad Demo (Click Me!) / German MiniCad Demo (Click Me!).rsrc / STR#_7008.txt < prev    next >
Encoding:
Text File  |  1994-01-18  |  1.4 KB  |  49 lines

  1. Open(FileName : TEXT);
  2.  
  3. Opens a file for reading capability
  4.  
  5. GetFile(VAR FileName : TEXT);
  6.  
  7. Displays the standard Macintosh file dialog which requests the user to select a text file
  8.  
  9. Read(VAR V1,V2, ... , Vn : INTEGER or REAL or LONGINT or CHAR or STRING);
  10.  
  11. Reads data from the current open text file and does not implement a carriage return
  12.  
  13. ReadLn(VAR V1,V2, ... , Vn : INTEGER or REAL or LONGINT or CHAR or STRING);
  14.  
  15. Reads data from the current open text file and  implements a carriage return
  16.  
  17. EOF(Filename : TEXT) : BOOLEAN;
  18.  
  19. Returns TRUE if the reading pointer of an open file has reached the end of the file
  20.  
  21. EOLN(FileName : TEXT) : BOOLEAN;
  22.  
  23. Returns TRUE if the reading pointer of an open file has reached the end of the line or carrage return
  24.  
  25. ReWrite(FileName : TEXT);
  26.  
  27. Creates a new file or opens an exixting one
  28.  
  29. PutFile(CommentStr, FileDefault : STRING;  VAR FileName : TEXT);
  30.  
  31. Displays the standard Macintosh file dialog which requests the user to select a text file for output
  32.  
  33. Append(FileName : TEXT);
  34.  
  35. Allows the user to add text information to the end of a text file
  36.  
  37. Close(FileName : TEXT);
  38.  
  39. Closes a currently open text file
  40.  
  41. Write(V1,V2,...,Vn: INTEGER or REAL or LONGINT or CHAR or STRING);
  42.  
  43. Writes data to a text file but does not implement a carriage return
  44.  
  45. WriteLn(V1,V2,...,Vn: INTEGER or REAL or LONGINT or CHAR or STRING);
  46.  
  47. Writes data to a text file and implements a carriage return
  48.  
  49.